home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 676-700 / 682 / rexxhostlib / romtag.asm < prev    next >
Assembly Source File  |  1995-03-18  |  467b  |  30 lines

  1.         INCLUDE "exec/types.i"
  2.         INCLUDE    "exec/nodes.i"
  3.         INCLUDE "exec/resident.i"
  4.  
  5.         INCLUDE    "rexxhost.i"
  6.  
  7.         XREF    _LibInitTab
  8.         XREF    _LibName
  9.         XREF    _LibID
  10.  
  11.         SECTION    text,CODE
  12.  
  13.         CNOP    4
  14.  
  15.         MOVEQ    #0,D0        ; word
  16.         RTS            ; word
  17.  
  18. InitDesc:    DC.W    RTC_MATCHWORD
  19.         DC.L    InitDesc
  20.         DC.L    EndCode
  21.         DC.B    RTF_AUTOINIT    ; yet auto-init
  22.         DC.B    VERSION        ; version
  23.         DC.B    NT_LIBRARY
  24.         DC.B    0        ; priority
  25.         DC.L    _LibName
  26.         DC.L    _LibID
  27.         DC.L    _LibInitTab    ; ptr to init table
  28. EndCode:
  29.         END
  30.